From: Alexandru Isaila Date: Tue, 25 Sep 2018 09:10:38 +0000 (+0300) Subject: x86/hvm: Add check for cpu_has_vmx_virt_exceptions X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~3241 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=a2eb46491e28079debc39488a7e23ed76cb5b003;p=xen.git x86/hvm: Add check for cpu_has_vmx_virt_exceptions This is useful so HVMOP_altp2m_vcpu_enable_notify will fail and not silently succeed. It save a call to HVMOP_altp2m_set_suppress_ve. Signed-off-by: Alexandru Isaila Reviewed-by: Andrew Cooper --- diff --git a/xen/arch/x86/hvm/hvm.c b/xen/arch/x86/hvm/hvm.c index 9a490ef68c..51fc3ec07f 100644 --- a/xen/arch/x86/hvm/hvm.c +++ b/xen/arch/x86/hvm/hvm.c @@ -4561,6 +4561,12 @@ static int do_altp2m_op( break; } + if ( !cpu_has_vmx_virt_exceptions ) + { + rc = -EOPNOTSUPP; + break; + } + v = d->vcpu[a.u.enable_notify.vcpu_id]; if ( !gfn_eq(vcpu_altp2m(v).veinfo_gfn, INVALID_GFN) ||